home *** CD-ROM | disk | FTP | other *** search
/ SGI Desktop Special Edition 1.1 / SGI Desktop Special Edition 1.1.iso / dist / mmail.idb / usr / lib / Zmail / bin / sun-to-mime.z / sun-to-mime
Encoding:
Text File  |  1995-11-13  |  559 b   |  18 lines

  1. #!/bin/csh -fb
  2. # (The "-fb" might need to be changed to "-f" on some systems)
  3. #
  4. # Provide VERY minimal support for mail generated by Sun's Openwindows mailtool.
  5. # Basically, this lets you see the text part, but not much else...
  6.  
  7. if (! $?METAMAIL_TMPDIR) then
  8.     set METAMAIL_TMPDIR=/tmp
  9. endif
  10.  
  11. set TMPFILE=${METAMAIL_TMPDIR}/stom.$$
  12. echo "Content-type: multipart/mixed; boundary=--------" > $TMPFILE
  13. echo "" >> $TMPFILE
  14. sed -e 's/X-Sun-Data-Type:/Content-type:/' >> $TMPFILE < $1
  15. echo "------------" >> $TMPFILE
  16. #metamail -d -z $TMPFILE
  17. metamail -z $TMPFILE
  18.